home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Shareware / Beyond Compare 3.0.10 / BCompareSetup.exe / {app} / BCompare.exe / 0 / RCDATA / TFTPGENERATESSHKEYSDIALOG / TFTPGENERATESSHKEYSDIALOG.txt
Text File  |  2008-11-03  |  3KB  |  162 lines

  1. inherited FtpGenerateSSHKeysDialog: TFtpGenerateSSHKeysDialog
  2.   Left = 391
  3.   Top = 432
  4.   Caption = 'Generate SSH Key Pair'
  5.   ClientHeight = 335
  6.   ClientWidth = 313
  7.   OnCreate = FormCreate
  8.   OnShow = FormShow
  9.   PixelsPerInch = 96
  10.   TextHeight = 13
  11.   object KeyTypeLbl: TUiLabel
  12.     Left = 8
  13.     Top = 8
  14.     Height = 13
  15.     Caption = '&Key type:'
  16.     FocusControl = KeyTypeEdit
  17.   end
  18.   object KeyLengthLbl: TUiLabel
  19.     Left = 176
  20.     Top = 8
  21.     Height = 13
  22.     Caption = 'Key &length in bits:'
  23.     FocusControl = KeyLengthEdit
  24.   end
  25.   object CommentLbl: TUiLabel
  26.     Left = 8
  27.     Top = 56
  28.     Height = 13
  29.     Caption = '&Comment:'
  30.     FocusControl = CommentEdit
  31.   end
  32.   object PassphraseLbl: TUiLabel
  33.     Left = 8
  34.     Top = 112
  35.     Height = 13
  36.     Caption = '&Passphrase:'
  37.     FocusControl = PassphraseEdit
  38.   end
  39.   object PassphraseMismatchLbl: TUiLabel
  40.     Left = 155
  41.     Top = 112
  42.     Width = 150
  43.     Height = 13
  44.     Alignment = taRightJustify
  45.     Caption = 'Passphrases do not match'
  46.     Visible = False
  47.     FontStyle = [fsBold]
  48.   end
  49.   object ConfirmPassphraseLbl: TUiLabel
  50.     Left = 8
  51.     Top = 152
  52.     Height = 13
  53.     Caption = 'C&onfirm passphrase:'
  54.     FocusControl = ConfirmPassphraseEdit
  55.   end
  56.   object PrivateKeyFileLbl: TUiLabel
  57.     Left = 8
  58.     Top = 200
  59.     Height = 13
  60.     Caption = 'P&rivate key filename:'
  61.     FocusControl = PrivateKeyFileEdit
  62.   end
  63.   object PublicKeyFileLbl: TUiLabel
  64.     Left = 8
  65.     Top = 248
  66.     Height = 13
  67.     Caption = 'P&ublic key filename:'
  68.     FocusControl = PublicKeyFileEdit
  69.   end
  70.   object PrivateKeyFileBrowseBtn: TUiBrowseSpeedButton
  71.     Left = 280
  72.     Top = 216
  73.     BrowseEdit = PrivateKeyFileEdit
  74.   end
  75.   object PublicKeyFileBrowseBtn: TUiBrowseSpeedButton
  76.     Left = 280
  77.     Top = 264
  78.     BrowseEdit = PublicKeyFileEdit
  79.   end
  80.   object KeyTypeEdit: TUiComboBox
  81.     Left = 8
  82.     Top = 24
  83.     Width = 89
  84.     Height = 21
  85.     Style = csDropDownList
  86.     ItemHeight = 13
  87.     TabOrder = 0
  88.     Items.WideStrings = (
  89.       'RSA'
  90.       'DSA')
  91.   end
  92.   object KeyLengthEdit: TUiComboBox
  93.     Left = 176
  94.     Top = 24
  95.     Width = 65
  96.     Height = 21
  97.     ItemHeight = 13
  98.     MaxLength = 4
  99.     TabOrder = 1
  100.     OnChange = SomethingChangedClick
  101.   end
  102.   object CommentEdit: TUiEdit
  103.     Left = 8
  104.     Top = 72
  105.     Width = 297
  106.     Height = 21
  107.     TabOrder = 2
  108.   end
  109.   object PassphraseEdit: TUiEdit
  110.     Left = 8
  111.     Top = 128
  112.     Width = 297
  113.     Height = 21
  114.     TabOrder = 3
  115.     OnChange = PassphraseEditChanged
  116.     EchoMode = emPassword
  117.   end
  118.   object ConfirmPassphraseEdit: TUiEdit
  119.     Left = 8
  120.     Top = 168
  121.     Width = 297
  122.     Height = 21
  123.     TabOrder = 4
  124.     OnChange = PassphraseEditChanged
  125.     EchoMode = emPassword
  126.   end
  127.   object PrivateKeyFileEdit: TUiBrowseEdit
  128.     Left = 8
  129.     Top = 216
  130.     Width = 265
  131.     Height = 21
  132.     TabOrder = 5
  133.     OnChange = PrivateKeyFileEditChanged
  134.     OnBrowse = KeyFileBrowse
  135.   end
  136.   object PublicKeyFileEdit: TUiBrowseEdit
  137.     Left = 8
  138.     Top = 264
  139.     Width = 265
  140.     Height = 21
  141.     TabOrder = 6
  142.     OnChange = SomethingChangedClick
  143.     OnBrowse = KeyFileBrowse
  144.   end
  145.   object GenerateBtn: TUiButton
  146.     Left = 152
  147.     Top = 304
  148.     Caption = '&Generate'
  149.     TabOrder = 7
  150.     OnClick = GenerateClick
  151.     AutoSize = asRight
  152.   end
  153.   object CancelBtn: TUiButton
  154.     Left = 232
  155.     Top = 304
  156.     Caption = 'Cancel'
  157.     ModalResult = 2
  158.     TabOrder = 8
  159.     AutoSize = asRight
  160.   end
  161. end
  162.